home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / TweenEvent.as < prev    next >
Text File  |  2009-02-12  |  861b  |  34 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class TweenEvent extends Event
  9.    {
  10.       
  11.       public static const TWEEN_END:String = "tweenEnd";
  12.       
  13.       mx_internal static const VERSION:String = "3.0.0.0";
  14.       
  15.       public static const TWEEN_UPDATE:String = "tweenUpdate";
  16.       
  17.       public static const TWEEN_START:String = "tweenStart";
  18.        
  19.       
  20.       public var value:Object;
  21.       
  22.       public function TweenEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:Object = null)
  23.       {
  24.          super(param1,param2,param3);
  25.          this.value = param4;
  26.       }
  27.       
  28.       override public function clone() : Event
  29.       {
  30.          return new TweenEvent(type,bubbles,cancelable,value);
  31.       }
  32.    }
  33. }
  34.